Part 1 Documentation [DOC]
	1. Addresses and Info
Part 2 Setup [SET]
	1. Button Colors
Part 3 ASM [ASM]
	code (28)
		1. UI Button Colors
		2. UI Hearts Position
Part 4 Tables [TBL]
	
----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------
Documentation [DOC]
----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------

8008AFF4

Create Texture?				;This function is only used the the rupee counter digit as far as I can tell
JAL		0x800844BC
	A0 = ?					;Appears to be the address to write all the data to. I do not know how the data is read by the game later on.
	A1 = Texture Pointer
	A2 = Texture Width
	A3 = Texture Height
	SP
		0x10 = X Position
		0x14 = Y Position
		0x18 = Width
		0x1C = Height
		0x20 = ? 			;0x400 for rupee digits, seems to stretch texture width
		0x24 = ? 			;0x400 for rupee digits, seems to stretch texture height


.org 0x8008AFC0
	ADDIU	A0, A0, 0x0010

.org 0x8008AFE4
	SW	T9, 0x0020(SP)

801D6808
801D7808

----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------
Setup [SET]
----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------

Buttons:
A  64C8FF
B  64FF78
C  FFF000
S  FF823C

----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------
ASM [ASM]
----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------

;_____________________________________________________________
;UI Button Colors
;Change the button colors to those seen in Majora's Mask.
;_____________________________________________________________

;;;;;;;;;;;;;;;;;
;;A BUTTON
;;;;;;;;;;;;;;;;;
.org 0x80110F3C
	ADDIU	T6, R0, 0x0064	;A Button Red
	SH		T6, 0x0AC0(T5)
.org 0x80110F08
	ADDIU	T7, R0, 0x00C8	;A Button Green
.org 0x80110F1C
	ADDIU	T9, R0, 0x00FF	;A Button Blue
	
;;;;;;;;;;;;;;;;;
;;B BUTTON
;;;;;;;;;;;;;;;;;
.org 0x80110EE8
	ADDIU	T6, R0, 0x0064	;B Button Red
.org 0x80110EF4
	ADDIU	V1, R0, 0x00FF	;B Button Green
.org 0x80110F10
	ADDIU	T9, R0, 0x0078	;B Button Blue
	SH		T9, 0x06EE(T8)
	
;;;;;;;;;;;;;;;;;
;;C BUTTONS
;;;;;;;;;;;;;;;;;
.org 0x801110E8
	ADDIU	T5, R0, 0x00FF	;C Button Red
.org 0x80111494
	ADDIU	T8, R0, 0x00FF	;C Button Green
.org 0x801114B4
	ADDIU	T6, R0, 0x0000	;C Button Blue
	SH		T6, 0x07E6(T9)
	
;;;;;;;;;;;;;;;;;
;;START BUTTON
;;;;;;;;;;;;;;;;;
.org 0x80089180
	LUI		AT, 0xFF82		;START Button Red & Green
	ORI		AT, AT, 0x3C00	;START Button Blue

;_____________________________________________________________
;UI Hearts Position
;Make it so that there's only 8 hearts per row.
;_____________________________________________________________

.org 0x80079B4C
	ADDIU	AT, R0, 0x0007	;Makes it so that there's only 8 hearts per row
	
----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------
Tables [TBL]
----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------
